From: Bill Pemberton Date: Mon, 27 Jul 2009 20:47:41 +0000 (-0400) Subject: Staging: hv: remove VMBUS_CONNECT_STATE typedef X-Git-Tag: archive/raspbian/4.9.13-1+rpi1~10^2~21337^2~418 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=5c3e375cf5cf709c95c705d564001c5a0ca3c50e;p=linux-4.9.git Staging: hv: remove VMBUS_CONNECT_STATE typedef Signed-off-by: Bill Pemberton Cc: Hank Janssen Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/VmbusPrivate.h b/drivers/staging/hv/VmbusPrivate.h index ad17088f601e..ec9bfa409550 100644 --- a/drivers/staging/hv/VmbusPrivate.h +++ b/drivers/staging/hv/VmbusPrivate.h @@ -54,18 +54,18 @@ /* Data types */ -typedef enum { +enum VMBUS_CONNECT_STATE { Disconnected, Connecting, Connected, Disconnecting -} VMBUS_CONNECT_STATE; +}; #define MAX_SIZE_CHANNEL_MESSAGE HV_MESSAGE_PAYLOAD_BYTE_COUNT typedef struct _VMBUS_CONNECTION { - VMBUS_CONNECT_STATE ConnectState; + enum VMBUS_CONNECT_STATE ConnectState; u32 NextGpadlHandle;